home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / ksh48.zip / kshrc.ksh < prev    next >
Text File  |  1992-09-06  |  793b  |  47 lines

  1. # .kshrc for OS/2 version of ksh
  2.  
  3. set -o emacs
  4. set -o hashall
  5.  
  6. bind ^Q=quote
  7. bind ^I=complete
  8. bind ^[^[=list-file
  9.  
  10. bind ^0H=up-history
  11. bind ^0P=down-history
  12. bind ^0K=backward-char
  13. bind ^0M=forward-char
  14. bind ^0s=backward-word
  15. bind ^0t=forward-word
  16.  
  17. bind ^0G=beginning-of-line
  18. bind ^0O=end-of-line
  19. bind ^0w=beginning-of-history
  20. bind ^0u=end-of-history
  21.  
  22. bind ^0S=eot-or-delete
  23.  
  24. FCEDIT=me
  25. PS1='!. !$ '
  26.  
  27. alias a:='cd a:.'
  28. alias b:='cd b:.'
  29. alias c:='cd c:.'
  30. alias d:='cd d:.'
  31. alias e:='cd e:.'
  32. alias f:='cd f:.'
  33. alias g:='cd g:.'
  34.  
  35. alias h='fc -l'
  36. alias j='jobs'
  37. alias which='type'
  38. alias back='cd -'
  39. alias cls='print -n "\033[H\033[2J"'
  40.  
  41. alias dir='cmd /c dir'
  42. alias del='cmd /c del'
  43. alias start='cmd /c start'
  44.  
  45. alias ll='ls -lsAFk'
  46. alias lf='ls -CAFk'
  47.